home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / PWGen 1.4 / PWGen-1.40-Setup.exe / {app} / config.ini < prev    next >
INI File  |  2004-05-14  |  5KB  |  128 lines

  1. ' Configuration file for PWGen
  2. '============================
  3. ' PWGen Copyright (c) 2002-04 by Christian Thoeing <c.thoeing@web.de>
  4. '
  5. '
  6. ' Explanations of the settings:
  7. '
  8. '
  9. ' Languages
  10. ' ---------
  11. ' obsolete, moved to language.txt.
  12. '
  13. '
  14. ' General
  15. ' -------
  16. '
  17. ' Language
  18. '     Code of the selected language (-> language.txt).
  19. '     This version supports German/Deutsch (de) and French/Franτais (fr).
  20. '     Default is <blank> (English).
  21. '
  22. ' WordList
  23. '     Here you can specify your favourite word list (see the sample
  24. '     wordlist_XXX.txt files). Note that your word list has to satisfy
  25. '     certain requirements in order to be accepted by PWGen:
  26. '       - it must contain at least 8192 words, each of them separated
  27. '         by a line-break
  28. '       - it must not contain duplicate and blank entries; PWGen will
  29. '         ignore those entries, as well as words longer than 10 characters
  30. '     If you leave this setting unspecified, PWGen will use its own internal
  31. '     word list (Diceware8k).
  32. '     Default is <blank>.
  33. '
  34. ' PrefPasswSize
  35. '     Indicates your preferred password size.
  36. '     Minimum is 32, maximum 2048, default 72.
  37. '
  38. ' RandStringType
  39. '     Indicates the type of random string displayed while collecting entropy
  40. '     (in Step II):
  41. '       0 - disabled: don't show anything
  42. '       1 - show random characters (e.g. "Cxt9RW1q")
  43. '       2 - show random characters taken from a larger table (e.g. "F$2.-5e]")
  44. '       3 - show random words (e.g. "hello knife city")
  45. '       4 - show random words, but without spaces between the words
  46. '           (e.g. "policetrunkwaste")
  47. '       5 - randomly choose a type (0 - 4); note that this also includes type
  48. '           #0: "don't show anything"!
  49. '     Default is 5.
  50. '
  51. ' TrayIcon
  52. '     If this option is set to nonzero, PWGen will be visible as a tray
  53. '     icon in the taskbar. This can be useful as a "stand-alone" state which
  54. '     allows you to generate passwords whenever you need them and to securely
  55. '     clear the clipboard whenever it is necessary.
  56. '     Default is 1 (true).
  57. '
  58. ' PrefCoding
  59. '     Indicates your preferred coding type:
  60. '       0 - Hexadecimal
  61. '       1 - Base64
  62. '       2 - Passphrase
  63. '     PWGen will select the check box (in Step III) on startup.
  64. '     Default is 1 (Base64).
  65. '
  66. ' Advanced
  67. ' --------
  68. ' (should only be changed by advanced users!)
  69. '
  70. ' EntropySrcBIPB (formerly KeybDelayEntropyBIPB)
  71. '     Estimated amount of Bits of Information Per Bit derived from the
  72. '     natural (keyboard delay) entropy source. A value of 0.0 means that the
  73. '     source yields 0 bits of information per bit (the source is useless), 1.0
  74. '     means that the source yields 1 bit of information per bit (optimum).
  75. '     If you know the "eccentricity" e of the source, you can calculate the
  76. '     BIPB value:
  77. '     bits_of_info=-(0.5+e)*log_2(0.5+e) - (0.5-e)*log_2(0.5-e)
  78. '     Minimum is 0.01, maximum 1.0, default 0.5.
  79. '     (Note that PWGen generates 7-8 bits(!) -- depending on the quality of
  80. '     the timer -- of entropy per keystroke; if EntropySrcBIPB is set to
  81. '     0.25, for example, the program obtains only 1.75-2.0 bits from the
  82. '     entropy source. If EntropySrcBIPB is 1.0, you will have PGP-like
  83. '     security [I wouldn't recommend this]. See random.c in PGP 2.6.3 for
  84. '     more details.)
  85. '
  86. ' SysEntBitsOfInfo
  87. '     Estimated amount of bits of information in system entropy. If this value
  88. '     is set to 0, the entropy derived from your system (e.g. time, cursor
  89. '     position, memory status) is considered worthless, but will still be used.
  90. '     It is not recommended to use more than 48 bits.
  91. '     Minimum is 0, maximum 128, default 34.
  92. '
  93. ' RandSeedFile
  94. '     Indicates if PWGen is to use a special file containing the contents of
  95. '     the random pool. This is no security risk; it is absolutely impossible
  96. '     to infer the last relevant state of the random pool from the randseed
  97. '     sequence. I highly recommend to enable this feature, because it can/will
  98. '     certainly improve the quality of your passwords.
  99. '     Default is 1 (true).
  100. '
  101. ' RandSeedPath
  102. '     Where to store the seed for the random generator. You can specify a
  103. '     a path with or without a file name (e.g. "C:\Windows\Temp\" or
  104. '     "A:\myseed.dat"). Useful if you want to protect this valuable data.
  105. '     Be sure that you _always_ add a backslash ("\") to path names.
  106. '     Default is <blank> (i.e. PWGen creates a __randseed.bin in the directory
  107. '     of its executable file). 
  108. '
  109. ' SecurityMsg
  110. '     Activates (1) or deactivates (0) security messages.
  111. '     Default is 1 (true).
  112. ' ------------------------------------------------------------------------------
  113.  
  114. [General]
  115. Language=en
  116. WordList=
  117. PrefPasswSize=72
  118. RandStringType=5
  119. TrayIcon=1
  120. PrefCoding=1
  121.  
  122. [Advanced]
  123. EntropySrcBIPB=0.5
  124. SysEntBitsOfInfo=34
  125. RandSeedFile=1
  126. RandSeedPath=
  127. SecurityMsg=1